home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / text / faqs / objective-c.classes < prev    next >
Encoding:
Internet Message Format  |  1994-04-18  |  27.3 KB

  1. Subject: comp.lang.objective-c FAQ, part 2/3: ClassWare Listing
  2. Newsgroups: comp.lang.objective-c,comp.answers,news.answers
  3. From: tiggr@es.ele.tue.nl (Tiggr)
  4. Date: 17 Apr 1994 16:04:31 GMT
  5.  
  6. Archive-name: Objective-C/classes
  7. Version: $Id: classes,v 2.11 1994/04/16 15:48:00 tiggr Exp $
  8.  
  9.  
  10.  
  11.                 Objective-C
  12.  
  13.                  ClassWare Listing
  14.  
  15.  
  16.  
  17. This is the second of three FAQ postings for comp.lang.objective-c.  This
  18. posting lists available kits and classes, to aid the reader in answering the
  19. question `to re-use or to re-invent?'.  In order to keep this list up to date
  20. and as interesting and diverse as possible, send your additions, deletions
  21. and suggestions to tiggr@es.ele.tue.nl.
  22.  
  23. The available classes and kits are categorized as follows:
  24.  
  25.     Stepstone    Stepstone libraries,
  26.             for use with Stepstone's environment
  27.     NeXT        NeXT kits, for use with NEXTSTEP
  28.     FSF        FSF maintained/released classes
  29.             for use with GNU CC
  30.     Third Party    commercial classes
  31.     GPL        classes released under the GPL
  32.     Public Domain    public domain classes---no GPL
  33.  
  34.  
  35. Stepstone
  36.  
  37.     Bundled with the compiler is ICpak 101 Foundation Class Library.  This
  38.     library provides twenty classes and more than three hundred methods
  39.     including such things as Collections (OrdCltn, Stack, Set, Dictionary,
  40.     SortCltn), Arrays (IdArray, IntArray), String, Sequences, Automatic
  41.     Object I/O (ASCII Filer), etc.
  42.  
  43.     The ICpak 201 Graphical User Interface library is used to build iconic
  44.     multi window user interfaces for workstation applications.  The library
  45.     consists of 58 classes and over 1,100 methods.  Classes include such
  46.     things as Controllers, Menu's, Menu Items, Icons, Windows(StdLayer),
  47.     Timers, Buttons, Text, etc, etc.  ICpak 201 is ported to X Windows,
  48.     OpenWindows, Motif and SunView and provides a consistent user interface/
  49.     look-and-feel between all platforms.
  50.  
  51.     Contact
  52.  
  53.     The Stepstone Corporation
  54.     75 Glen Road
  55.     Sandy Hook, CT 06482
  56.     tel: +1 203 426-1875
  57.     fax: +1 203 270-0106
  58.     telex: 506127
  59.  
  60. NeXT
  61.  
  62.     Common Classes
  63.  
  64.     Several classes provided with NeXTSTEP do not belong to a specific
  65.     kit: Object (core of the runtime system, root of the general class
  66.     hierarchy), Storage, List (an abstract array), HashTable (to store
  67.     (key, object) associations), StreamTable (to write data to streams)
  68.     and NXStringTable (to store (key, string) associations).
  69.  
  70.     Application Kit
  71.  
  72.     The Application Kit defines a set of Objective-C classes and
  73.     protocols, C functions, and assorted constants and data types that
  74.     are used by virtually every NeXTSTEP application.  The pith of the
  75.     Kit are the tools it provides for implementing a graphical,
  76.     event-driven user interface:
  77.  
  78.         The Application Kit provides classes---most notably Window and
  79.         View---that make drawing on the screen exquisitely succinct.
  80.         Much of the unromantic work that's involved in
  81.         drawing---communicating with hardware devices and screen
  82.         buffers, clearing areas of the screen before drawing,
  83.         coordinating overlapping drawing areas---is taken care of for
  84.         you, letting you concentrate on the much more gratifying task of
  85.         supplying code that simply draws.  And even this task is
  86.         assisted by many of the other classes and a number of C
  87.         functions that provide drawing code for you.
  88.  
  89.         The Application Kit makes event handling extremely simple.  The
  90.         Responder class, from which many of the Kit's classes inherit,
  91.         defines a mechanism by which the user's actions are passed to
  92.         the objects in your application that can best respond to them.
  93.         The Application class, which inherits from Responder,
  94.         establishes the low-level connections that makes this system
  95.         possible.  It provides methods that inform your application of
  96.         watershed events, such as when the user makes the application
  97.         active and inactive, and when the user logs out or turns off the
  98.         computer.
  99.  
  100.     By using these tools, you bless your application with a look and
  101.     feel that's similar to other applications, making it easier for the
  102.     user to recognize and use.
  103.  
  104.     (Introduction from the NeXTSTEP General Reference, "Application Kit"
  105.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  106.     All rights reserved.)
  107.  
  108.     Database Kit
  109.  
  110.     The Database Kit provides a comprehensive set of tools, classes, and
  111.     protocols for building applications that use a high-level
  112.     entity-relationship model to manipulate database servers such as
  113.     those provided by Oracle or Sybase.  The kit provides services that
  114.     include:
  115.  
  116.         Communication with client-server databases.
  117.  
  118.         Modeling properties (attributes and relationships) of each
  119.         database.
  120.  
  121.         Record management and buffering.
  122.  
  123.         Data flow between record managers and the application user
  124.         interface.
  125.  
  126.         User interface objects for display and editing.
  127.  
  128.     (Introduction from the NeXTSTEP General Reference, "Database Kit"
  129.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  130.     All rights reserved.)
  131.  
  132.     Distributed Objects
  133.  
  134.     The Distributed Objects system provides a relatively simple way for
  135.     applications to communicate with one another by allowing them to
  136.     share Objective-C objects, even amongst applications running on
  137.     different machines across a network.  They are useful for
  138.     implementing client-server and cooperative applications.  The
  139.     Distributed Objects system subsumes the network aspects of typical
  140.     remote procedure call (RPC) programming, and allow an application to
  141.     send messages to remote objects using ordinary Objective-C syntax.
  142.  
  143.     The Distributed Objects system takes the form of two classes,
  144.     NXConnection and NXProxy.  NXConnection objects are primarily
  145.     bookkeepers that manage resources passed between applications.
  146.     NXProxy objects are local objects that represent remote objects.
  147.     When a remote object is passed to your application, it is passed in
  148.     the form of a proxy that stands in for the remote object; messages
  149.     to the proxy are forwarded to the remote object, so for most intents
  150.     and purposes the proxy can be treated as though it were the object
  151.     itself.  Note that direct access to instance variables of the remote
  152.     object isn't available through the proxy.
  153.  
  154.     (Introduction from the NeXTSTEP General Reference, "Distributed Objects"
  155.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  156.     All rights reserved.)
  157.  
  158.     Indexing Kit
  159.  
  160.     The Indexing Kit is a set of programmatic tools for managing data,
  161.     especially the large amounts of data characteristic of information
  162.     intensive applications.  Much as the Application Kit provides a
  163.     framework for a graphical interface, the Indexing Kit provides a
  164.     framework for data management.
  165.  
  166.     The Indexing Kit supplies facilities for building custom databases
  167.     and for searching the UNIX file system.  Key benefits include
  168.     guaranteed data integrity, excellent performance, thread-safe
  169.     operation, tight integration with the NeXTSTEP programming
  170.     environment, and the ability to efficiently store and retrieve
  171.     Objective-C objects and unstructured data like text, sound, and
  172.     images.
  173.  
  174.     The Indexing Kit consists of:
  175.  
  176.         A transaction-oriented foundation for storing and retrieving
  177.         persistent data, using virtual memory mapping for efficient
  178.         random access to parts of a file without reading or writing the
  179.         entire file. Transactions guarantee data integrity on persistent
  180.         storage media, and are also used to manage concurrent access to
  181.         shared data.
  182.  
  183.         Fast sequential and associative access to stored data.
  184.         Associative access is untyped, in that the programmer defines
  185.         the data types of keys and their ordering by means of a
  186.         comparison function or a format string.
  187.  
  188.         A simple data management capability based on the Objective-C
  189.         run-time system.  Records can be moved efficiently between
  190.         working memory and the storage substrate in the form of
  191.         Objective-C objects.  Multiple indexes can be built over
  192.         programmer-defined attributes, so that records can be ordered
  193.         and retrieved by the values of their indexed attributes.
  194.  
  195.         A general query processing facility, including a declarative
  196.         query language and its interpreter.  Queries can be applied to
  197.         individual objects, to collections of objects, or to the
  198.         attribute/value lists produced by Indexing Kit's customizable
  199.         text processing tools.
  200.  
  201.         High-level file system searching facilities based on the
  202.         supporting layers described above, including fast literal
  203.         searching of file contents.
  204.  
  205.     (Introduction from the NeXTSTEP General Reference, "Indexing Kit"
  206.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  207.     All rights reserved.)
  208.  
  209.     Mach Kit
  210.  
  211.     The Mach Kit provides an object-oriented interface to some of the
  212.     features of the Mach operating system.  At this time, it is most
  213.     useful to applications that make use of the Distributed Objects
  214.     system, since these applications rely upon Mach's message sending
  215.     abilities to transport objects, ports, and data between processes.
  216.     The Mach Kit may also be useful for drivers and multi threaded
  217.     applications.  The Mach Kit provides several classes and protocols,
  218.     listed below.
  219.  
  220.     (Introduction from the NeXTSTEP General Reference, "Mach Kit"
  221.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  222.     All rights reserved.)
  223.  
  224.     NetInfo Kit
  225.  
  226.     The NetInfo Kit is a collection of classes and a single function
  227.     used to provide a connection to and interface with NetInfo domains.
  228.     The NetInfo Kit provides classes for basic interface with a domain
  229.     as well as specialized panels.
  230.  
  231.     (Introduction from the NeXTSTEP General Reference, "NetInfo Kit"
  232.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  233.     All rights reserved.)
  234.  
  235.     3D Kit
  236.  
  237.     The 3D Graphics Kit enables NeXTSTEP applications to model and
  238.     render 3-dimensional scenes.  Much as the Application Kit's 2D
  239.     graphics capabilities are based on the Display PostScript
  240.     interpreter, the 3D Kit's capabilities are based on the Interactive
  241.     RenderMan renderer.  There are both similarities and differences in
  242.     the inner workings of the two implementations.
  243.  
  244.     One similarity is that both are implemented with a client-server
  245.     model, in which client applications send drawing code to the Window
  246.     Server, which does the actual drawing.  Another similarity is that
  247.     N3DCamera---the 3D Kit's View---generates all drawing code, both 2D
  248.     and 3D, when its drawSelf: method is invoked.  This keeps the
  249.     Application Kit's display mechanism intact for both PostScript and
  250.     RenderMan drawing.
  251.  
  252.     One difference in the implementations is in the code generated for
  253.     drawing. For 2D drawing, a View sends PostScript code to the Window
  254.     Server's Display PostScript interpreter.  For 3D drawing, a View
  255.     sends RenderMan Interface Bytestream (RIB) code to the Window
  256.     Server's Interactive RenderMan renderer.
  257.  
  258.     (Introduction from the NeXTSTEP General Reference, "3D Graphics Kit"
  259.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  260.     All rights reserved.)
  261.  
  262.     Sound Kit
  263.  
  264.     The Sound Kit is designed to provide both low- and high-level access
  265.     to sound hardware on workstations running NeXTSTEP, including
  266.     support for a wide variety of sound formats, real-time mixing and
  267.     compression.  The Sound Kit consists of five general categories of
  268.     objects:
  269.  
  270.         Sound Device Objects
  271.     
  272.         Sound Device objects, like NXSoundIn and NXSoundOut,
  273.         wrap the low-level hardware and sound drivers into
  274.         simple, extensible packages.
  275.  
  276.         Sound Streams
  277.  
  278.         Sound Stream objects, like NXPlayStream or NXRecordStream,
  279.         allow the sound output of many simultaneous programs to be
  280.         mixed, scaled, and processed before being sent out the Sound
  281.         objects.
  282.  
  283.         The Sound Object
  284.  
  285.         The Sound object is NeXTSTEP's fundamental sound data
  286.         storage and playback/recording facility.
  287.  
  288.         The SoundView Object
  289.  
  290.         NeXTSTEP's Sound View is a graphical display of sound data
  291.         that interacts well with the NeXTSTEP GUI.
  292.  
  293.         The Sound Meter Object
  294.  
  295.         The Sound Meter displays the current running amplitude of a
  296.         playing or recording sound (in mono), much like volume
  297.         meters on amplifiers or tape decks.
  298.  
  299.     In addition to this library, NeXT provides two sets of sound driver
  300.     and sound access functions.
  301.  
  302.     NXLiveVideoView
  303.  
  304.     The NXLiveVideoView class provides API for interactive display of
  305.     live video on the screen of a NeXTdimension Computer.  The
  306.     NXLiveVideoView class specification provides a complete discussion
  307.     of the NeXTdimension Computer's video capabilities and the API
  308.     provided by NXLiveVideoView.
  309.  
  310.     (Introduction from the NeXTSTEP General Reference, "Video"
  311.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  312.     All rights reserved.)
  313.  
  314.     Applications
  315.  
  316.     There are several classes which solely exist to enable the
  317.     programmer to add functionality to specific existing NEXTSTEP
  318.     applications:
  319.  
  320.         IBPalette, IBInspector
  321.  
  322.         These classes allow developers to expand the functionality
  323.         of the Interface Builder application, creating their own
  324.         palettes of objects that can be dragged into an interface,
  325.         and inspectors to set and view the attributes of those
  326.         objects.
  327.  
  328.         Layout
  329.  
  330.         This class allows developers to add their own modules to the
  331.         Preferences application.
  332.  
  333.         WMInspector
  334.  
  335.         This class allows developers to add their own file contents
  336.         inspectors to the Workspace Manager application.
  337.  
  338.     Other
  339.  
  340.     Before NeXTSTEP 3.0, MusicKit was distributed as part of NEXTSTEP.
  341.     MusicKit is now maintained and made available by CCRMA (see the
  342.     entry under `Public Domain Kits').  Also until the advent of
  343.     NeXTSTEP 3.0, PhoneKit was part of NeXTSTEP.  PhoneKit classes
  344.     provided easy to ISDN connections.
  345.  
  346.     Contact
  347.  
  348.     NeXT Computer, Inc.
  349.     900 Chesapeake Drive
  350.     Redwood City, CA 94063
  351.     tel: +1 800 848 NEXT
  352.     fax: +1 415 780 2801
  353.     email: NeXTanswers@NeXT.COM
  354.  
  355. FSF
  356.  
  357.     Object
  358.  
  359.     Object is the root class which comes as part of the Objective-C
  360.     runtime library provided with the GNU CC compiler.
  361.  
  362.     Collection Library
  363.  
  364.     The Collection Library is a library of Objective-C objects with
  365.     similar functionality to Smalltalk's Collection objects.  It
  366.     includes: Set, Bag, Array, CircularArray, GapArray, Queue, Stack,
  367.     Heap, LinkedList, BinaryTree, SplayTree, RBTree, Dictionary,
  368.     MappedCollector, EltNodeCollector and DelegateList.
  369.  
  370.     Outside of its main hierarchy it also includes List, HashTable and
  371.     Storage objects compatible with NeXT's objects of the same name.
  372.  
  373.     An alfa release of the Collection Library can be obtained by FTP
  374.     from cs.rochester.edu:/pub/libcoll/libcoll-yymmdd.tar.gz, in
  375.     which `yymmdd' is a string of digits specifies its date.
  376.  
  377.     The Collection Library needs GCC 2.5.0 or a more recent version
  378.     to be compiled.
  379.  
  380.     Contact: mccallum@cs.rochester.edu
  381.  
  382.     Contact
  383.  
  384.     Free Software Foundation
  385.     675 Massachusetts Avenue
  386.     Cambridge, MA  02139
  387.     +1-617-876-3296
  388.  
  389.  
  390. Third Party Kits
  391.  
  392.     Hot Technologies
  393.  
  394.     BARCODEKIT
  395.  
  396.         BarCodeKit is a comprehensive collection of object palettes for
  397.         creating international standard bar codes.  BarCodeKit allows
  398.         both developers and organizations to quickly add bar coding to
  399.         custom NEXTSTEP applications.  By combining the power of object
  400.         orientation and PostScript into a comprehensive library of bar
  401.         code symbologies, BarCodeKit represents the state of the art in
  402.         bar code technology.  Developers can seamlessly add bar coding to
  403.         an existing application in a matter of minutes by using any of
  404.         the 35 pretested and reusable objects in the BarCodeKit library
  405.         of palettes.  Previously, adding bar coding to an application
  406.         meant weeks or months of development, incompatibility with
  407.         different bar code readers and the use of costly proprietary bar
  408.         code printers.
  409.  
  410.         The BarCodeKit features a full range of bar code symbologies
  411.         including Code 3 of 9, Code 39 Extended, UPC-A, UPC-E, HRI, NDC,
  412.         EAN-8, EAN-13, JAN-8, JAN-13, ISBN, ISSN, SICI, SISAC, POSTNET,
  413.         ABC, FIM, BRM, Interleaved Two of Five, MSI, Codabar, Code 11,
  414.         Code 93, Code 128, Code 16K and Code 49.  It complies to
  415.         international, national, military and commercial bar coding
  416.         standards including EAN, JAN, CEN, ANSI, MIL, USS and HIBCC.
  417.         Furthermore, it provides developers with flexibility; bar codes
  418.         created using the kit can be scaled and rotated to fit a
  419.         specific area on a label or document and saved in EPS, EPSI (EPS
  420.         with interchange bitmap preview for non Display PostScript
  421.         computers), or TIFF formats.  BarCodeKit is an excellent
  422.         complement to NEXTSTEP's Application Kit and Database Kit It was
  423.         nominated for a Best of Breed Award by the editors of NeXTWORLD
  424.         Magazine.
  425.  
  426.     SERIALPORTKIT
  427.  
  428.         SerialPortKit is a fundamental class library and palette that
  429.         makes communication with serial peripherals easy to add into
  430.         your custom NEXTSTEP applications without any of the drawbacks
  431.         of other solutions.  You can use SerialPortKit to communicate
  432.         with a variety of serial peripherals such as modems, printers,
  433.         terminals, audio/video equipment, bar code readers, magnetic
  434.         stripe readers, controllers and data acquisition devices.  The
  435.         SerialPortKit contains a single SerialPort class which
  436.         interfaces to our SerialPortServer. Additional classes for
  437.         specific peripherals are available in our SerialPeripheralsKit
  438.         or through our consulting service.
  439.  
  440.         You can easily incorporate the SerialPortKit into your custom
  441.         applications due to its professionally designed and truly
  442.         object-oriented programming interface. The included Interface
  443.         Builder palette, source code examples, on-line indexed reference
  444.         manuals and tutorial further removes the tedious task of
  445.         traditional serial port programming.  Requires SerialPortServer
  446.         or SerialPortServer Lite which are available also from Hot
  447.         Technologies.
  448.  
  449.     Contact
  450.  
  451.         Hot Technologies
  452.         75 Cambridge Parkway, Suite E-504
  453.         Cambridge, MA 02142-1238 USA
  454.         tel: + 1 617 252 0088
  455.         fax: + 1 617 876 8901
  456.         email: info@hot.com (NeXTmail)
  457.  
  458.     Berkeley Productivity Group
  459.  
  460.     BPG BLOCKS
  461.  
  462.         BPG BLOCKS is an open extensible manufacturing framework which
  463.         supports a variety of applications including factory definition,
  464.         real-time tracking, real-time scheduling, short-term planning,
  465.         shift scheduling, production planning and capacity analysis.
  466.         BPG BLOCKS creates a virtual reality which represents the real
  467.         factory including the people, machines, material, processes,
  468.         their dynamics and interactions.  BPG BLOCKS is based on an easy
  469.         to understand design where every software object represents
  470.         either a real-world entity, or an important concept in the
  471.         manufacturing domain.  BPG BLOCKS' object-oriented manufacturing
  472.         model mirrors the real world, captures numerous manufacturing
  473.         details accurately, supports commonly used abstractions, and
  474.         allows decisions to be made based on aggregate information.  BPG
  475.         BLOCKS forms the basis for building custom applications which
  476.         meet the unique needs of your particular manufacturing
  477.         facility.
  478.  
  479.     Objective-C Views
  480.  
  481.         Objective-C Views is a user interface class library for
  482.         Microsoft Windows.
  483.  
  484.     Contact
  485.  
  486.         Christopher Lozinski
  487.             BPG
  488.             35032 Maidstone Court
  489.             Newark, CA 94560
  490.             tel: +1 510 795-6086
  491.             fax: +1 510 795-8077
  492.             email: lozinski@cup.portal.com
  493.  
  494.  
  495.     M. Onyschuk and Associates Inc.
  496.  
  497.     OBJECT:Math
  498.  
  499.         OBJECT:Math is a comprehensive set of tools and 23 Objective-C
  500.         classes used to add extensible math and string handling to your
  501.         custom and commercial applications:
  502.  
  503.         Compiler---The OBJECT:Math Compiler converts math and string
  504.         expressions (as might be typed into a spreadsheet cell,
  505.         plotting package, etc.) into Objective-C objects.
  506.  
  507.         Unbundler---The OBJECT:Math Unbundler object allows
  508.         end-users to extend their OBJECT:Math applications with
  509.         custom-built or third-party OBJECT:Math function bundles.
  510.  
  511.         User Interface Objects---OBJECT:Math comes complete with a
  512.         Lotus Improv style function picker, a variable editor, and
  513.         objects used to display OBJECT:Math expression trees and
  514.         other tree structures.
  515.  
  516.         As product sources are available the product may even be of
  517.         interest to non-NeXT Objective-C programmers.
  518.  
  519.     Contact
  520.  
  521.         Mark Onyschuk
  522.         M. Onyschuk and Associates Inc.
  523.         tel: +1 416 462 3954
  524.         email: ask-oa@plexus.guild.org
  525.  
  526.  
  527.     Stream Technologies Inc.
  528.  
  529.     Store
  530.  
  531.         Store is an Object Oriented User Level Virtual File System.
  532.         It is described extensively in `Store - Object Oriented Virtual
  533.         File System' by Timo Lehtinen, which is available by anonymous
  534.         FTP from ftp.sti.fi:/pub/sti/doc/papers/store.ps.
  535.  
  536.     Contact
  537.  
  538.         Stream Technologies Inc.
  539.         Valkj\"arventie 2
  540.         SF-02130 Espoo
  541.         Finland
  542.         tel: +358 0 4357 7348
  543.         fax: +358 0 4357 7340
  544.         email: info@sti.fi
  545.  
  546.  
  547. GPL Kits
  548.  
  549.    objcX
  550.  
  551.     An alpha version of an GNU Objective-C class library for X/Motif
  552.     Windows is available via anonymous ftp from
  553.  
  554.         ftp.slac.stanford.edu:pub/sources/objcX-0.6.tar.gz.
  555.  
  556.     For lack of a good witty name, the library is called objcX.
  557.  
  558.     The library requires the List class from the Collection Library for
  559.     GNU Objective-C (libcoll).
  560.  
  561.     Because we built this library to support porting NeXTSTEP
  562.     applications to X/Motif and because our GUI programming experience
  563.     has been with NeXTSTEP, this class library has a strongly
  564.     resemblance to NeXT's AppKit.  However, it is only a Objective-C
  565.     wrapper to Motif widgets and does not support Display PostScript,
  566.     rich text, pasteboard, drag and drop, services or many other things
  567.     associated with the NeXTSTEP environment that are not available
  568.     under X windows.
  569.  
  570.     Also available, for a NeXTSTEP platform only, is a program that
  571.     converts an object archive file generated by the InterfaceBuilder
  572.     (.nib file) into a GNU object archive file usable by the objcX class
  573.     library.  It is available from
  574.  
  575.         ftp.slac.stanford.edu:pub/sources/trnib-0.5.tar.gz
  576.  
  577.     This program requires NeXTSTEP developer and gcc.
  578.  
  579.     These announcements are also a call for help.  The library and the
  580.     translator program could use much more work in two areas...
  581.  
  582.      - first the library could be flushed out with more features to
  583.        support larger applications
  584.  
  585.      - second, I would like to contribute the library to the GNU
  586.        project. But it is based on Motif widgets which is not free
  587.        software.  Thus, work is needed to replace Motif widgets with
  588.        widgets based on free software.
  589.  
  590.     Contact
  591.  
  592.         Paul F. Kunz    Paul_Kunz@slac.stanford.edu (NeXT mail ok)
  593.         Stanford Linear Accelerator Center, Stanford University
  594.         Voice: (415) 926-2884   (NeXT) Fax: (415) 926-3587
  595.  
  596.  
  597.     Tiggr's Objective-C Library
  598.  
  599.     Tiggr's Objective-C Library, or tobjc for short, is a basic
  600.     Objective-C library, whose functionality is based on Lisp.
  601.  
  602.     tobjc provides the following classes: LispObject, LispVector,
  603.     Cons, Double, Integer, String, AVLTree, THashTable, StringTable,
  604.     Trie, Lex, LexC and LexDFG.  Furthermore, tobjc includes a
  605.     program to extract documentation from Objective-C source files.
  606.  
  607.     All classes are a subclass of LispObject.  The LispObject class
  608.     provides its allocation routines and garbage collection (through
  609.     class abstraction) to its subclasses.
  610.  
  611.     tobjc is undergoing continuous development.  Test releases can
  612.     be obtained by anonymous FTP to `ftp.es.ele.tue.nl' as
  613.     `/pub/objc/tobjc-x.xx.tar.gz', where `x.xx' is some version
  614.     indication.  It is by no means finished yet, but certainly
  615.     useful (I have used it for developing a VHDL->ASCIS DFG compiler).
  616.  
  617.     Contact
  618.  
  619.         Pieter J. `Tiggr' Schoenmakers
  620.         email: tiggr@es.ele.tue.nl
  621.         tel: +31 40 123484
  622.         fax: +31 40 128616
  623.  
  624.  
  625. Public Domain Kits
  626.  
  627.     Various authors
  628.  
  629.     MiscKit
  630.  
  631.         The MiscKit is a collection of over sixty objects which extend
  632.         the NEXTSTEP Objective-C development environment in various
  633.         ways.  It includes palletized subclasses of AppKit controls,
  634.         foundation objects, and a variety of useful special purpose
  635.         objects.
  636.  
  637.         Objects include strings, basic data structures, and kits for
  638.         building swapping views and inspectors.  There are also
  639.         frameworks for building Info menus and a generic document
  640.         handling architecture.  Palettized objects include a logarithmic
  641.         and circular sliders, a tri-state button, a combined Slider and
  642.         TextField, and a read-only NXColorWell.  There are other
  643.         objects, functions, and useful macros in the kit as well.
  644.  
  645.         Documentation, examples, tutorials, and complete source code are
  646.         distributed with the MiscKit.  The kit itself is the product of
  647.         over 25 Usenet personalities and is available for use in any
  648.         project free of cost.  The only restriction is that you
  649.         acknowledge use of the kit in your project.
  650.  
  651.     Contact
  652.  
  653.         For more information or to be placed on the MiscKit discussion
  654.         list, contact the kit administrator, Don Yacktman, by sending
  655.         e-mail to misckit-request@byu.edu.
  656.  
  657.     CCRMA
  658.  
  659.     MusicKit
  660.  
  661.         The Music Kit provides tools for designing music
  662.         applications. These tools address three topics: music
  663.         representation, performance, and synthesis (digital sound
  664.         generation and processing).  The Objective-C classes defined in
  665.         the Music Kit fall neatly into these three areas.
  666.  
  667.         The design goal of the Music Kit is to combine the interactive
  668.         gestural control of MIDI with the precise timbral control of
  669.         MUSIC 5-type systems in an extensible, object-oriented
  670.         environment. To this end, the Music Kit is capable of fully
  671.         representing MIDI.  The Music Kit accepts MIDI in and can send
  672.         MIDI out through the two serial ports at the back of the
  673.         computer. Nonetheless, the Music Kit isn't limited by the MIDI
  674.         specification; for example, its resolution of frequency and
  675.         amplitude is much finer than MIDI's highly quantized values.
  676.  
  677.         The Music Kit generates sounds by sending synthesis instructions
  678.         to the DSP.  The generality of the synthesis software far
  679.         surpasses that of commercial synthesizers.  While most
  680.         synthesizers employ only one type of synthesis-the Yamaha DX-7
  681.         uses only frequency modulation, for example-the Music Kit can
  682.         implement virtually any sound synthesis strategy.  And since the
  683.         synthesis engine (the DSP) and the control stream are brought
  684.         together in a single high-performance computer, the Music Kit
  685.         makes possible an unprecedented level of expressive control.
  686.         (from Documentation/MusicKit+DSP/General/SoundMusicDSP.rtfd)
  687.  
  688.         MusicKit used to be supplied by NeXT as part of NeXTSTEP (pre
  689.         3.0).  It is now maintained by CCRMA and available by FTP from
  690.         ccrma-ftp.stanford.edu.  There are two packages:
  691.  
  692.         pub/MusicKit_4.0.pkg.tar
  693.  
  694.             Class library, header files, documentation, programming
  695.             examples, and a suite of applications (size = 9MB).
  696.  
  697.         pub/MusicKitSource_4.0.pkg.tar
  698.             Source of the MusicKit class library (size = 7MB).
  699.  
  700.     Contact
  701.  
  702.         email: musickit@ccrma.stanford.edu
  703.  
  704.  
  705. ADMINISTRATIVIA
  706.  
  707.     The information in this file comes AS IS, WITHOUT ANY WARRANTY.  You may
  708.     use the information contained in this file or distribute this file, as
  709.     long as you do not modify it, make money out of it or take the credits.
  710.  
  711.     All trademarks appearing in this file are owned by their respective
  712.     owner.  To increase the information content in this file, any indication
  713.     to that effect is not present in the FAQ other than in this paragraph.
  714.  
  715. The first version of this FAQ was written by Bill Shirly, helped by the
  716. feedback and information given to him by a lot of people.  The current
  717. version is maintained by Tiggr, supported by feedback from Glen Diener,
  718. Christopher Lozinski, Sean Luke and a lot of other people.  Mail your bug
  719. reports, comments, suggestions and additions to tiggr@es.ele.tue.nl.
  720.  
  721.